for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export interface ReTweetableInterface {
retweetError: string;
isReTweetable(): boolean;
}
export abstract class ReTweetableAbstract implements ReTweetableInterface {
retweetError = '';
abstract isReTweetable(): boolean;